google.golang.org/grpc/internal/idle.Manager.activeCallsCount (field)

11 uses

	google.golang.org/grpc/internal/idle (current package)
		idle.go#L47: 	activeCallsCount          int32 // Count of active RPCs; -math.MaxInt32 means channel is idle or is trying to get there.
		idle.go#L79: 		activeCallsCount: -math.MaxInt32,
		idle.go#L112: 	if atomic.LoadInt32(&m.activeCallsCount) > 0 {
		idle.go#L153: 	if !atomic.CompareAndSwapInt32(&m.activeCallsCount, 0, -math.MaxInt32) {
		idle.go#L166: 	if atomic.LoadInt32(&m.activeCallsCount) != -math.MaxInt32 {
		idle.go#L168: 		atomic.AddInt32(&m.activeCallsCount, math.MaxInt32)
		idle.go#L175: 		atomic.AddInt32(&m.activeCallsCount, math.MaxInt32)
		idle.go#L198: 	if atomic.AddInt32(&m.activeCallsCount, 1) > 0 {
		idle.go#L235: 	atomic.AddInt32(&m.activeCallsCount, math.MaxInt32)
		idle.go#L254: 	atomic.AddInt32(&m.activeCallsCount, math.MaxInt32)
		idle.go#L272: 	atomic.AddInt32(&m.activeCallsCount, -1)